
/* skills section starts from here */
.skills{
    background: #000000;
    color: white;
    transition: all 120ms;
    padding-top: 90px;
    padding-bottom: 65px
  }
  
  #skills_contents{
    display: flex;
      justify-content: center;
  
  }
  #part_one{
    width: 50%;
    border: solid 1px #6c757d;
    justify-content: center;
    margin: 0px 70px;
    padding: 10px;
    border-radius: 10px;
  }
  
  #part_two{
    width: 50%;
    border: solid 1px #6c757d;
    justify-content: center;
    margin: 0px 70px;
    padding: 10px;
    border-radius: 10px;
  }
  
  
  #part_one h4, #part_two h4{
    width: 100%;
    padding: 15px 0px;
  }
  
  .cards {
      display: grid;
      grid-template-areas:
        "first second "
        "first second ";
      gap: 15px;
    justify-content: center;
    }
    
  
   .in_card {
    display: flex;
    align-items: center;
    background-color: #6a5a5d;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    height: 78px;
    width: 134px;
    border-radius: 10px;
    color: white;
    cursor: pointer;
    transition: 400ms;
    }
  
    .cards .in_card:hover {
      transform: scale(1.1, 1.1);
    }
    
    .cards:hover > .in_card:not(:hover) {
      filter: blur(10px);
      transform: scale(0.9, 0.9);
    }
  
  /* skills section ends here */
  